f6c6a37c962a02658f29476dfe17933a47c0597f,src/net/java/sip/communicator/impl/notification/NotificationServiceImpl.java,NotificationServiceImpl,loadNotifications,#,572
Before Change
handler = new LogMessageNotificationHandlerImpl(logType);
boolean isEnabled = Boolean.parseBoolean(
configService.getString(
actionPropName + ".enabled"));
handler.setEnabled(isEnabled);
}
else if(actionType.equals(ACTION_COMMAND))
{
After Change
handler = new LogMessageNotificationHandlerImpl(logType);
handler.setEnabled(isEnabled(actionPropName + ".enabled"));
}
else if(actionType.equals(ACTION_COMMAND))
{